From: Eric S. Raymond Date: Fri, 23 Apr 1993 03:40:03 +0000 (+0000) Subject: (Fdefine_function): Changed name back to Fdefalias, so we get things X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96495 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=80df38a283bb13bf088d8dc8ecabed4af36d6643;p=emacs.git (Fdefine_function): Changed name back to Fdefalias, so we get things in a known-good state. --- diff --git a/src/data.c b/src/data.c index df96a3d54f6..c9cc6bad384 100644 --- a/src/data.c +++ b/src/data.c @@ -525,7 +525,7 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0, return newdef; } -DEFUN ("define-function", Fdefine_function, Sdefine_function, 2, 2, 0, +DEFUN ("defalias", Fdefalias, Sdefalias, 2, 2, 0, "Set SYMBOL's function definition to NEWVAL, and return NEWVAL.\n\ Associates the function with the current load file, if any.") (sym, newdef) @@ -2153,7 +2153,7 @@ syms_of_data () defsubr (&Sboundp); defsubr (&Sfboundp); defsubr (&Sfset); - defsubr (&Sdefine_function); + defsubr (&Sdefalias); defsubr (&Ssetplist); defsubr (&Ssymbol_value); defsubr (&Sset);